home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / gemfsc18.lzh / AESSRC18.LZH / AESFUNCS / FRMPRTF.C < prev    next >
Text File  |  1992-03-27  |  466b  |  23 lines

  1. /**************************************************************************
  2.  * FRMPRTF.C - frm_printf() function.
  3.  *************************************************************************/
  4.  
  5. #include <stdarg.h>
  6. #include "gemfast.h"
  7.  
  8. int frm_printf(options, buttons, fmt)
  9.     long    options;
  10.     char    *buttons;
  11.     char    *fmt;
  12. {
  13.     va_list args;
  14.     int     rv;
  15.  
  16.     va_start(args, fmt);
  17.     rv = frm_vprintf(options, buttons, fmt, args);
  18.     va_end(args);
  19.  
  20.     return rv;
  21. }
  22.  
  23. ə